From e1eb56fb6bbc6cc466338fe86f01d95fc73e124f Mon Sep 17 00:00:00 2001 From: "Edgar E. Iglesias" Date: Mon, 9 Mar 2015 15:23:23 +1000 Subject: [PATCH] xen/arm: Remove warning for platforms without platform specific code Replace the warning with an info message stating that the platform is generic. Suggested-by: Ian Campbell Signed-off-by: Edgar E. Iglesias Reviewed-by: Julien Grall Acked-by: Ian Campbell --- xen/arch/arm/platform.c | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/xen/arch/arm/platform.c b/xen/arch/arm/platform.c index 86daf2bf6c..70c1388f9e 100644 --- a/xen/arch/arm/platform.c +++ b/xen/arch/arm/platform.c @@ -44,17 +44,6 @@ static bool_t __init platform_is_compatible(const struct platform_desc *plat) return 0; } -/* List of possible platform */ -static void dump_platform_table(void) -{ - const struct platform_desc *p; - - printk("Available platform support:\n"); - - for ( p = _splatform; p != _eplatform; p++ ) - printk(" - %s\n", p->name); -} - void __init platform_init(void) { int res = 0; @@ -72,9 +61,7 @@ void __init platform_init(void) if ( platform == _eplatform ) { /* TODO: dump DT machine compatible node */ - printk(XENLOG_WARNING "WARNING: Unrecognized/unsupported device tree " - "compatible list\n"); - dump_platform_table(); + printk(XENLOG_INFO "Platform: Generic System\n"); platform = NULL; } else -- 2.30.2